endless loop - определение. Что такое endless loop
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое endless loop - определение

PROGRAMMING IDIOM
Endless loop; Loop, Infinite; Infinite Loops; Infinite recursion; Neverending Loop; Alderson loop; While(true); While (true); While (True); While(True); While(TRUE); While (TRUE); While (1); While(1); For(;;); For (;;); Tight loops; Tight Loops; Tight Loop; Never ending loop; Infinite loops; Infinite Loop; Endless Loop (computing); Infinity loop; Unproductive loop; Infinite iteration; Unconditional loop; Unconditional loops; Endless loops
  • A [[blue screen of death]] on [[Windows XP]]. "The [[device driver]] got stuck in an infinite loop."
Найдено результатов: 595
endless loop         
Endless (comics)         
SANDMAN COMIC CHARACTERS
The Sandman (morpheus); Destruction (DC Comics); Desire (DC Comics); Despair (DC Comics); Delirium (comics); Morpheus (Sandman character); The Sandman (Morpheus); Endless (Sandman); Destiny's Garden; Destiny (Sandman); Desire (Sandman); Destruction (Sandman); Delirium (Sandman); Despair (Sandman); Daniel (Sandman); Delirium (Sandman character); The endless (comics); The Endless (comics); The Endless (DC Comics); Dream of the endless; Destruction of the Endless; Daniel (DC Comics); Daniel (comics); Kai'ckul; Destiny of the Endless; Endless (The Sandman); Desire of the Endless; Lord Morpheus; Endless (Comics); Despair (comics); Despair of the Endless; Delirium of the Endless; Daniel Hall (comics); Delirium (DC Comics); Destruction (comics); Desire (comics); Hall, Daniel; Destiny (DC Comics)
The Endless are a family of beings who appear in American comic books published by DC Comics. The members of the family include Death, Delirium, Desire, Despair, Destiny, Destruction, and Dream.
tight loop         
WIKTIONARY REDIRECT
Endless loop; Loop, Infinite; Infinite Loops; Infinite recursion; Neverending Loop; Alderson loop; While(true); While (true); While (True); While(True); While(TRUE); While (TRUE); While (1); While(1); For(;;); For (;;); Tight loops; Tight Loops; Tight Loop; Never ending loop; Infinite loops; Infinite Loop; Endless Loop (computing); Infinity loop; Unproductive loop; Infinite iteration; Unconditional loop; Unconditional loops; Endless loops
<programming> A loop of code that executes without releasing any resources to other programs or the operating system. Consider the following pointless BASIC loop that counts upward indefinitely 10 i = i + 1 20 GOTO 10 Run on a single-user system such as MS-DOS this will not cause any problems. Run on a cooperative multitasking operating system such as Windows 3, the system would appear to freeze. A pre-emptive multitasking operating system such as UNIX or Windows NT would "steal" cycles away from the program and continue to run other programs. See also busy-wait and multitasking. (1999-05-06)
infinite loop         
<programming> (Or "endless loop") Where a piece of program is executed repeatedly with no hope of stopping. This is nearly always because of a bug, e.g. if the condition for exiting the loop is wrong, though it may be intentional if the program is controlling an embedded system which is supposed to run continuously until it is turned off. The programmer may also intend the program to run until interrupted by the user. An endless loop may also be used as a last-resort error handler when no other action is appropriate. This is used in some operating system kernels following a panic. A program executing an infinite loop is said to spin or buzz forever and goes catatonic. The program is "wound around the axle". A standard joke has been made about each generation's exemplar of the ultra-fast machine: "The Cray-3 is so fast it can execute an infinite loop in under 2 seconds!" See also black hole, recursion, infinite loop. [Jargon File] (1996-05-11)
Infinite loop         
In computer programming, an infinite loop (or endless loop) is a sequence of instructions that, as written, will continue endlessly, unless an external intervention occurs ("pull the plug"). It may be intentional.
Endless runner         
VIDEO GAME GENRE
Endless running; Endless running game; Endless running games; Draft:Endless runner; Infinite runner; Infinite running; Infinite running game; Endless-runner; Endless run; Endless runner game
Endless runner or infinite runner is a subgenre of platform game in which the player character is forced to run for an infinite amount of time while avoiding obstacles. The player's objective is to reach a high score by surviving for as long as possible.
Loop, Indiana County, Pennsylvania         
HUMAN SETTLEMENT IN WEST MAHONING TOWNSHIP, PENNSYLVANIA, UNITED STATES OF AMERICA
Sesha loop, pa; Sesha Loop, Pennsylvania; Loop, Pennsylvania
Loop was an unincorporated community in West Mahoning Township, Indiana County, Pennsylvania. Retrieved 1 July 2017.
Loop fission and fusion         
COMPILER OPTIMIZATION
Loop fusion; Loop jamming; Loop distribution; Loop fission
In computer science, loop fission (or loop distribution) is a compiler optimization in which a loop is broken into multiple loops over the same index range with each taking only a part of the original loop's body. The goal is to break down a large loop body into smaller ones to achieve better utilization of locality of reference.
loop fusion         
COMPILER OPTIMIZATION
Loop fusion; Loop jamming; Loop distribution; Loop fission
Loop optimization         
COMPILER OPTIMIZATIONS WHICH IMPROVE THE PERFORMANCE OF LOOPS
Loop optimizations; Loop transformation
In compiler theory, loop optimization is the process of increasing execution speed and reducing the overheads associated with loops. It plays an important role in improving cache performance and making effective use of parallel processing capabilities.

Википедия

Infinite loop

In computer programming, an infinite loop (or endless loop) is a sequence of instructions that, as written, will continue endlessly, unless an external intervention occurs ("pull the plug"). It may be intentional.